diff options
Diffstat (limited to 'app/[lng]/evcp/(evcp)/payment-conditions/page.tsx')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/payment-conditions/page.tsx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/app/[lng]/evcp/(evcp)/payment-conditions/page.tsx b/app/[lng]/evcp/(evcp)/payment-conditions/page.tsx index b9aedfbb..fc22745c 100644 --- a/app/[lng]/evcp/(evcp)/payment-conditions/page.tsx +++ b/app/[lng]/evcp/(evcp)/payment-conditions/page.tsx @@ -7,7 +7,7 @@ import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton"; import { SearchParamsCache } from "@/lib/payment-terms/validations"; import { getPaymentTerms } from "@/lib/payment-terms/service"; import { PaymentTermsTable } from "@/lib/payment-terms/table/payment-terms-table"; - +import { InformationButton } from "@/components/information/information-button"; interface IndexPageProps { searchParams: Promise<SearchParams>; } @@ -28,7 +28,10 @@ export default async function IndexPage(props: IndexPageProps) { <Shell className="gap-2"> <div className="flex items-center justify-between space-y-2"> <div> - <h2 className="text-2xl font-bold tracking-tight">결제 조건 관리</h2> + <div className="flex items-center gap-2"> + <h2 className="text-2xl font-bold tracking-tight">결제 조건 관리</h2> + <InformationButton pageCode="evcp/payment-conditions" /> + </div> <p className="text-muted-foreground"> 결제 조건(Payment Terms)을 등록, 수정, 삭제할 수 있습니다. </p> |
